Skip to main content

childadverseeventvaccinationdetails

Table: childadverseeventvaccinationdetails

The childadverseeventvaccinationdetails table stores detailed information about vaccines associated with a child’s adverse event.
It captures batch numbers, manufacturer details, expiry, and audit information for traceability and reporting.


Columns

Column NameData TypeConstraintsDescription
ChildAdverseEventVaccionationDetailsIdint(11)NOT NULL, AUTO_INCREMENTUnique identifier for each vaccination detail record
createdDatedatetimeNULLTimestamp when the record was created
lastEditedDatedatetimeNULLTimestamp when the record was last edited
batchNovarchar(255)NULLVaccine batch number
childAdverseEventIdint(11)NULLReferences the associated adverse event
dateManufacturedatetimeNULLVaccine manufacture date
expiryDatedatetimeNULLVaccine expiry date
manufacturerNamevarchar(255)NULLName of the vaccine manufacturer
serialNovarchar(255)NULLVaccine serial number
vaccineIdint(11)NULLReferences the vaccine administered
createdByUserIdint(11)NULLUser who created the record
lastEditedByUserIdint(11)NULLUser who last edited the record

Indexes

  1. PRIMARY - Primary key on ChildAdverseEventVaccionationDetailsId
  2. childAdverseEventId - Index on childAdverseEventId

Foreign Key Relations

  • childAdverseEventIdchildadverseevent.childAdverseEventId
    • Links the vaccination detail to the specific adverse event

Usage Notes

  • Tracks vaccine details related to a child’s adverse event, including batch and manufacturer info.
  • expiryDate and dateManufacture fields help in quality and safety tracking.
  • Audit fields (createdByUserId, lastEditedByUserId, createdDate, lastEditedDate) maintain record history.
  • Ensures traceability of vaccines administered to children experiencing adverse events.